home *** CD-ROM | disk | FTP | other *** search
- unit Unit1;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, ExtCtrls, ListHdr, StdCtrls, LBoxChk, TabBox,
- LabelFrm, Buttons, GraphBtn, ColorBtn, Ctrl3d;
-
- type
- TForm1 = class(TForm)
- Label3D1: TLabel3D;
- FramedLabel1: TFramedLabel;
- TabListBox1: TTabListBox;
- CheckListBox1: TCheckListBox;
- TabComboBox1: TTabComboBox;
- ListHeader1: TTabListHeader;
- ColorButton1: TColoredButton;
- ColorButton2: TColoredButton;
- BitBtn1: TBitBtn;
- BitBtn2: TBitBtn;
- ColorButton3: TColoredButton;
- ColorButton6: TColoredButton;
- ColorButton7: TColoredButton;
- Label3D2: TLabel3D;
- Button3D1: TButton3D;
- Button3D2: TButton3D;
- Button3D3: TButton3D;
- ColoredButton1: TColoredButton;
- Button3D4: TButton3D;
- Label3D3: TLabel3D;
- Button3D5: TButton3D;
- Button3D6: TButton3D;
- FramedLabel2: TFramedLabel;
- procedure ColorButton7Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm1.ColorButton7Click(Sender: TObject);
- begin
- Close;
- end;
-
- end.
-